home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdu82823.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Thanks to Nicolas FISCHBACH (nico@securite.org) for his help
  7. #
  8. # Ref:  http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11290);
  14.  script_version("$Revision: 1.3 $");
  15.  script_cve_id("CVE-2001-0427");
  16.  
  17.  name["english"] = "CSCdu82823";
  18.  
  19.  script_name(english:name["english"]);
  20.  
  21.  desc["english"] = "
  22. The remote VPN concentrator has a bug in its
  23. implemenation of telnetd.
  24.  
  25. This vulnerability is documented as Cisco bug ID CSCdu82823.
  26.  
  27. Solution : 
  28. http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  29. Risk factor : High
  30.  
  31. *** As Nessus solely relied on the banner of the remote host
  32. *** this might be a false positive
  33. ";
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_GATHER_INFO);
  40.  
  41.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  42.  
  43.  script_family(english:"CISCO");
  44.  
  45.  script_require_ports(23);
  46.  script_dependencie("snmp_sysDesc.nasl");
  47.  script_require_keys("SNMP/community",
  48.               "SNMP/sysDesc",
  49.               "CISCO/model");
  50.  exit(0);
  51. }
  52.  
  53.  
  54. if(!get_port_state(23))exit(0);
  55. soc = open_sock_tcp(23);
  56. if(!soc)exit(0);
  57. else close(soc);
  58.  
  59.  
  60. # The code starts here
  61. ok=0;
  62.  
  63. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  64.  
  65.  
  66.  
  67. # Is this a VPN3k concentrator ?
  68. if(!egrep(pattern:".*VPN 3000 Concentrator.*", string:os))exit(0);
  69.  
  70.  
  71. # < 3.0.4
  72. if(egrep(pattern:".*Version 3\.0\.Rel.*", string:os))ok = 1;
  73. if(egrep(pattern:".*Version 3\.0\.[0-3].*", string:os))ok = 1;
  74.  
  75. # 2.x.x
  76. if(egrep(pattern:".*Version 2\..*", string:os))ok = 1;
  77.  
  78.  
  79. if(ok)security_hole(port:161, proto:"udp");
  80.